home *** CD-ROM | disk | FTP | other *** search
- /*
- * translator.h
- * Bytecode translator.
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __intrp_h
- #define __intrp_h
-
- struct _methods;
-
- void translate(struct _methods*);
-
- typedef struct _tableswitch {
- struct _tableswitch* next;
- int len;
- int offsets[0];
- } tableswitch;
-
- typedef struct _lookupswitch {
- struct _lookupswitch* next;
- int len;
- int offsets[0];
- } lookupswitch;
-
- #endif
-